home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Technotools
/
Technotools (Chestnut CD-ROM)(1993).ISO
/
lang_c
/
mscfunct
/
com_stat.c
< prev
next >
Wrap
C/C++ Source or Header
|
1987-05-06
|
202b
|
13 lines
#include <dos.h>
int com_stat( port ) int port;
{
union REGS regs;
regs.x.dx = port;
regs.h.ah = 0x3;
int86( 0x14, ®s, ®s );
return( (int)regs.x.ax );
}